/* start light mode styling */
	:root {
		
		--text: #2c172b;
		--border: rgb(56, 53, 58);
		--accent: rgb(29, 7, 44);
		--bg: #6d5872;
		--gradientTop: white;
		--gradientBottom: rgba(254, 240, 255, 0.8);
	}
	/* start dark mode styling */
	@media (prefers-color-scheme: dark) {
		:root {
			--text: white;
			--border: #735a78;
			--accent: #9265c3;
			--bg: rgba(48, 0, 60, 0.8);
			--gradientBottom: rgb(34, 0, 60);
			--gradientTop: rgb(69, 47, 79);
			a:link { color: rgb(210, 173, 230); }
		}
		header {
			background: url('***dark mode banner image***');
		}
	}
/* end dark mode styling */
	
body {
	padding: 10px;
	font-family: 'MS PGothic', sans-serif;
	color: var(--text);

	/* page background pattern */
	background-color: var(--gradientTop);
	background-image: url("/media/stars.gif");
	background-size: cover;
	background-position: 0 0, 0 0, 10px 18px, 10px 18px, 0 0, 10px 18px;
}

.container {
	max-width: 66rem;
	margin: 5vw auto 12px auto;
	border: 6px ridge var(--border);
	outline: 3px solid var(--gradientTop);
	outline-offset: 4px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;
}
	
.crow-sticker {
	position:absolute;
	bottom: -110px;
	right: -40px;
}

header {
	background-image: url(/media/d235453eb3e221eacf397552d9d18901.jpg);
	background-color: black;
	background-size: 100%;
	background-repeat:no-repeat;
	background-position:left;
	width: 100%;
	height: 120px; /* change banner height here*/
	border: 2px ridge var(--border);
	border-radius: 5px;
	position: relative;
}


section-3 {
	border: 2px ridge var(--border);
	border-radius: 5px;
	background:rgba(60, 54, 66, 0.74);
	padding: 5px;
}



.imgtxt-oc {
	position: absolute;
	bottom: -100px;
	left: -100px;
}

.imgtxt-nsfw {
 position: absolute;
	bottom: -100px;
	right: -100px;
}
.imgtxt-oc span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 2.5rem;
  color: #FFF;
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.imgtxt-oc:hover span, .imgtxt-oc:focus span {
  opacity: 1;
}
.imgtxt-nsfw span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 2.5rem;
  color: #FFF;
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.imgtxt-nsfw:hover span, .imgtxt-nsfw:focus span {
  opacity: 1;
}
.imgtxt-nsfw:hover img, .imgtxt-nsfw:focus img {
	transform: rotate(10deg);
	filter:brightness(70%);
  /* add hover effects like transform or filter to your images here! */
}

.imgtxt-oc:hover img, .imgtxt-oc:focus img {
	transform: rotate(-10deg);
	filter:brightness(70%);
  /* add hover effects like transform or filter to your images here! */
}
